home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Startup Ex 1.xpl < prev    next >
Text File  |  2001-04-12  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\10) AutoExec.bat"
  5. "NAME"="Execute AutoExec.bat"
  6. "VERSION"="1.55"
  7. "OSVERSION"="0101011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Execute AutoExec.bat"
  10. "DESCRIPTION 1"="Activate "Execute AutoExec.bat" if this file should be executed on startup."
  11. "DESCRIPTION 2"="Note: AUTOEXEC.NT and CONFIG.NT are always executed!"
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18.  
  19. sP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\"
  20. sv1="ParseAutoexec" 'string
  21. Sub Plugin_Initialize 
  22.  if regpathexists(sp) then
  23.     i=RegReadValue(sp&sv1)
  24.     if i=1 then SetUIElement 1,true
  25.  else
  26.   Disable
  27.  end if
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1) 
  35.  if b=true then
  36.   Call RegWriteValue(sp & sv1,"1",1)
  37.  else
  38.   Call RegWriteValue(sp & sv1,"0",1)
  39.  end if
  40.  
  41.  
  42. End Sub
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.